home *** CD-ROM | disk | FTP | other *** search
/ Developer CD Series 1994 November: Tool Chest / Dev.CD Nov 94.toast / Sample Code / Snippets / Development Tools & Languages / AEGestalt 1.0 / UAEServerCommand.h < prev    next >
Encoding:
Text File  |  1992-07-15  |  518 b   |  27 lines  |  [TEXT/MPS ]

  1. //    UAEServerCommand.h
  2. //     Copyright © 1991-92 Apple Computer, Inc. All rights reserved.
  3. //    Kent Sandvik DTS
  4. //    This file contains the TAEServerCommand class, used to
  5. //    serve the incoming Apple event with needed information
  6. //
  7. //    <1>        khs        1.0        First final version
  8.  
  9.  
  10. #ifndef __AESERVERCOMMAND__
  11. #define __AESERVERCOMMAND__
  12.  
  13. #ifndef __AEGESTALT__
  14. #include "UAEGestalt.h"
  15. #endif
  16.  
  17. class TAEServerCommand : public TServerCommand
  18. {
  19. public:
  20.     TAEServerCommand();
  21.     virtual pascal void DoIt();
  22. };
  23.  
  24. #endif __AESERVERCOMMAND__
  25.  
  26.  
  27.